var strconv.powtab
5 uses
strconv (current package)
atof.go#L312: var powtab = []int{1, 3, 6, 9, 13, 16, 19, 23, 26}
atof.go#L342: if d.dp >= len(powtab) {
atof.go#L345: n = powtab[d.dp]
atof.go#L352: if -d.dp >= len(powtab) {
atof.go#L355: n = powtab[-d.dp]
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |